home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / fourpage / fourpage.dpr next >
Text File  |  1996-04-08  |  266b  |  15 lines

  1. { by Mark Erbaugh, CIS 71370,1475 }
  2. { copyright (c) 1995 - Microcomputer Enhancement }
  3. program Fourpage;
  4.  
  5. uses
  6.   Forms,
  7.   Main in 'MAIN.PAS' {frmFourPage};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TfrmFourPage, frmFourPage);
  13.   Application.Run;
  14. end.
  15.